home *** CD-ROM | disk | FTP | other *** search
/ Hackers Handbook - Millenium Edition / Hackers Handbook.iso / files / exploits / WebSideSpoof.sh < prev    next >
Encoding:
Linux/UNIX/POSIX Shell Script  |  1998-10-19  |  1.0 KB  |  34 lines

  1. #!/bin/bash
  2. # ######################################################################
  3. # WebSideSpoof.sh Written by RSnake (7/17/1998)
  4. # Come and visit: http://www.webfringe.com !!!
  5. #
  6. # Sanitized and made LUSER-friendly by Tattooman (7/19/98)
  7. #
  8. # Run with these commands at your shell account prompt:
  9. #
  10. #     chmod 700 webside_spoof.sh
  11. #     webside_spoof.sh 4000 5
  12. #
  13. # Where '4000' is the amount of times you wish to spoof - must not be
  14. # larger than '999999' and must be a multiple of 4 for most reliable
  15. # (pretty looking) output.  Also '5' is the delay between spoofs.
  16. # You'll probably want to keep the delay at '1' or above unless you 
  17. # are running this script on a Cray.  The load stays below 2 on a 133
  18. # Linux box with a delay of '1'.
  19. #
  20. # Replace the 'url' line with YOUR WebSideStory cgi link:
  21. # ######################################################################
  22.  
  23. url=http://w12.hitbox.com/wc3/W123456789.cgi
  24.  
  25. x=$1
  26. while [ $x -gt 0 ]
  27. do
  28. lynx -dump $url > /dev/null &
  29. x=$(($x-1))
  30. echo -n $x ' '
  31. sleep $2
  32. done
  33. echo && echo Done.
  34.